@charset "utf-8";

body {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Roboto", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}

/****************** ヘッダー *****************/
.header {
    margin-bottom: 33px;
    position: fixed;
    z-index: 1;
    top: 0;
    background-color: #ffffff;
    max-width: 900px;
    width: 100%;
}
.header_container {
    display: flex;
    padding: 45px 16px 0px 16px;
    justify-content: space-between;
    align-items: center;
}
.header_title {
    color: #00006e;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    /* 140% */
}
.header_menu {
    cursor: pointer;
}

/****************** メニュー *****************/
nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    max-width: 900px;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    overflow: scroll;
}
nav.panelactive {
    opacity: 1;
    z-index: 999;
}
.nav_close {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 64px 20px 8px 0px;
    border-bottom: 1px solid #000090;
}
.nav_close img {
    cursor: pointer;
}
.nav_home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12.5px 20px;
}
.nav_home_img img {
    display: block;
}
.nav_title {
    color: #fff;
    font-size: 16px;
    padding: 0;
    list-style-type: none;
    margin: 0;
}
.nav_course {
    padding: 10px 20px;
}
.fz14 {
    font-size: 14px;
}
.nav_title_green .nav_course {
    background-color: #009944;
}
.nav_title_green li a {
    color: #009944;
    border-bottom: 1px solid #009944;
}
.nav_title_green li:last-child a {
    border-bottom: none;
}
.nav_title_purple .nav_course {
    background-color: #9b33f8;
}
.nav_title_purple li a {
    color: #9b33f8;
    border-bottom: 1px solid #9b33f8;
}
.nav_title_purple li:last-child a {
    border-bottom: none;
}
.nav_title_blue .nav_course {
    background-color: #00a0e9;
}
.nav_title_blue li a {
    color: #00a0e9;
    border-bottom: 1px solid #00a0e9;
}
.nav_title_blue li:last-child a {
    border-bottom: none;
}
.nav_title_orange .nav_course {
    background-color: #ff9900;
}
.nav_title_orange li a {
    color: #ff9900;
    border-bottom: 1px solid #ff9900;
}
.nav_title_orange li:last-child a {
    border-bottom: none;
}
.nav_title_red .nav_course {
    background-color: #ff0000;
}
.nav_title_red li a {
    color: #ff0000;
    border-bottom: 1px solid #ff0000;
}
.nav_title_red li:last-child a {
    border-bottom: none;
    margin-bottom: 50px;
}
ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
/****************** メイン *****************/
.main {
    position: relative;
    top: 106px;
}
.main_title {
    height: 99.071px;
    min-height: 94px;
    padding: 10px 11px;
    background-color: #00a0e9;
    margin-bottom: 33px;
}
.main_title_1 {
    color: #fff;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 51.2px; /* 160% */
    flex: 1 0 0;
    align-self: stretch;
}
.main_title_2 {
    color: #fff;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 9.4px;
}
.section1 {
    padding: 0px 21px;
    margin-bottom: 27px;
}
.section1_title {
    color: #00a0e9;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 160% */
    margin-bottom: 10px;
}
.section1_desc {
    color: #353e44;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px; /* 160% */
}
.section2 {
    margin: auto;
    margin-bottom: 30px;
    padding: 0 40px;
}
.section2_button {
    display: flex;
    width: 100%;
    height: 60px;
    padding: 0px 20px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border: 2px solid #00a0e9;
    background: #fff;
    margin: 8px 0;
}
.section2_button_title {
    color: #00a0e9;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px; /* 144% */
}
.section2_button_img {
    display: flex;
    align-items: center;
}
#section3 {
    display: flex;
    padding: 14px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background-color: #00a0e9;
    margin-bottom: 33px;
}
.section3_img {
    display: flex;
    align-items: center;
    color: #ffffff;
}
.section3_title {
    color: #fff;
    font-family: Roboto;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.section4 {
    max-width: 900px;
    margin: auto;
    margin-bottom: 33px;
    padding: 0 40px;
}
.section4_desc1 {
    border-top: 2px solid #00a0e9;
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: rgba(0, 160, 233, 0.6);
    color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
    padding-left: 12px;
}
.section4_desc2 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: rgba(0, 160, 233, 0.2);
    color: #444;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
    height: 29.273px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.section4_desc3 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: #fff;
    height: 48.788px;
    display: flex;
    align-items: center;
    color: #333;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
}
.section4_desc4 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: rgba(0, 160, 233, 0.2);
    color: #444;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
    height: 29.273px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.section4_desc5 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: #fff;
    height: 68.303px;
    display: flex;
    align-items: center;
    color: #333;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
}
.section4_desc6 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: rgba(0, 160, 233, 0.2);
    color: #444;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
    height: 29.273px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.section4_desc7 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: #fff;
    height: 48.788px;
    display: flex;
    align-items: center;
    color: #333;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
}
.section4_desc8 {
    border-right: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: rgba(0, 160, 233, 0.2);
    color: #444;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
    height: 29.273px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.section4_desc9 {
    border-right: 2px solid #00a0e9;
    border-bottom: 2px solid #00a0e9;
    border-left: 2px solid #00a0e9;
    background-color: #fff;
    height: 48.788px;
    display: flex;
    align-items: center;
    color: #333;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding-left: 12px;
}
.section4_desc9 a {
    color: #00a0e9;
}
#section5 {
    display: flex;
    padding: 14px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background-color: #00a0e9;
    margin-bottom: 33px;
}
.section5_img {
    display: flex;
    align-items: center;
    color: #ffffff;
}
.section5_title {
    color: #fff;
    font-family: Roboto;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.section6 {
    margin: 0 35px 33px 35px;
    border-radius: 10px;
    border: 2px solid #00a0e9;
    background-color: #fff;
    display: flex;
    height: 39.043px;
    align-items: center;
    flex-shrink: 0;
    color: #00a0e9;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 0px; /* 0% */
    justify-content: center;
}
.section6 a {
    color: #00a0e9;
}
.section6 {
    margin: 0 40px 33px;
    border-radius: 10px;
    border: 2px solid #00a0e9;
    background-color: #fff;
    display: flex;
    height: 39.043px;
    align-items: center;
    flex-shrink: 0;
    color: #00a0e9;
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 0px; /* 0% */
    justify-content: center;
}
.section6_desc {
    margin: 0 40px 33px;
    color: #353e44;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px; /* 125% */
}
#section7 {
    display: flex;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background-color: #00a0e9;
    margin-bottom: 33px;
}
.section7_img {
    display: flex;
    align-items: center;
    color: #ffffff;
}
.section7_title {
    color: #fff;
    font-family: Roboto;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.section8 {
    margin: 0 40px 33px;
    border-radius: 10px;
    border: 2px solid #00a0e9;
    background-color: #fff;
    display: flex;
    padding: 11px 23px;
    justify-content: center;
    align-items: center;
    color: #00a0e9;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px; /* 160% */
}
.section8 a {
    color: #00a0e9;
}
.section9 {
    border: 2px solid #00a0e9;
    background-color: #fff;
    margin: 0 40px 33px;
}
.section9_title {
    background-color: rgba(0, 160, 233, 0.6);
    height: 30.399px;
    color: #fff;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.section9_desc_title {
    color: #00a0e9;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px; /* 112% */
    padding: 8px 0 0 10px;
}
.section9_desc {
    list-style-type: none;
    color: #353e44;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    margin-top: 0;
}
.section9_caution_txt {
    padding-left: 10px;
    background-color: rgba(0, 160, 233, 0.2);
    height: 30.399px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #353e44;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
}
.section9_caution_txt02 {
    padding: 0 10px;
    font-size: 14px;
    margin: 9px 0 0;
    color: #353e44;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
}
.section9_caution a {
    display: block;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #00a0e9;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */
    width: fit-content;
    margin: 10px 0;
}
.footer {
    position: relative;
    top: 106px;
    display: flex;
    padding: 29px 27px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    background: var(--unnamed, #000090);
}
.section11 {
    color: #fff;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    margin-bottom: 10px;
}
.section13 {
    color: #fff;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px; /* 100% */
    margin-top: -8px;
}
.section14 {
    color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 183.333% */
    margin: auto;
    margin-bottom: 24px;
}

@media (max-width: 599px) {
    .main_title_1 {
        font-size: 27px;
    }
    .main_title_2 {
        font-size: 13px;
    }
    .section2 {
        padding: 0 20px;
    }
    .section4 {
        padding: 0 20px;
    }
    .section6 {
        margin: 0 20px 33px;
    }
    .section6_desc {
        margin: 0 20px 33px;
    }
    .section8 {
        margin: 0 20px 33px;
    }
    .section9 {
        margin: 0 20px 33px;
    }
    .footer {
        margin: 0;
    }
}
@media screen and (max-width: 400px) {
    .main_title_1 {
        font-size: 24px;
    }
    .main_title_2 {
        font-size: 12px;
    }
    .section2 {
        padding: 0 20px;
    }
    .section4 {
        padding: 0 20px;
    }
}
